home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
nano.preinst
< prev
next >
Wrap
Text File
|
2008-09-24
|
379b
|
21 lines
#!/bin/sh
set -e
if [ "$1" = "upgrade" ]; then
if dpkg --compare-versions "$2" lt 1.2.4-2; then
if [ ! -e /usr/man ]; then
ln -s /usr/share/man /usr/man
update-alternatives --remove editor /usr/bin/nano || RET=$?
rm /usr/man
if [ -n "$RET" ]; then
exit $RET
fi
else
update-alternatives --remove editor /usr/bin/nano
fi
fi
fi